From: iap10@labyrinth.cl.cam.ac.uk Date: Tue, 4 May 2004 21:57:10 +0000 (+0000) Subject: bitkeeper revision 1.891 (409811b6YsMa5sqRfO6eja3WkihxHA) X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~18230 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=59df7b5404c171a415575f1df9686aec8e8ac869;p=xen.git bitkeeper revision 1.891 (409811b6YsMa5sqRfO6eja3WkihxHA) Move Xen network and block drivers into the DRIVERS target rather than CORE_FILES, so they're initialised slightly later in boot order. This fixes a problem where /dev/random blocked forever becuase entropy from device interupts was getting lost. --- diff --git a/xenolinux-2.4.26-sparse/arch/xen/Makefile b/xenolinux-2.4.26-sparse/arch/xen/Makefile index d799c003bb..23a79a61af 100644 --- a/xenolinux-2.4.26-sparse/arch/xen/Makefile +++ b/xenolinux-2.4.26-sparse/arch/xen/Makefile @@ -67,11 +67,11 @@ CORE_FILES += arch/xen/kernel/kernel.o arch/xen/mm/mm.o CORE_FILES += arch/xen/drivers/evtchn/drv.o CORE_FILES += arch/xen/drivers/console/drv.o ifdef CONFIG_XEN_NEWIO -CORE_FILES += arch/xen/drivers/blkif/drv.o -CORE_FILES += arch/xen/drivers/netif/drv.o +DRIVERS += arch/xen/drivers/blkif/drv.o +DRIVERS += arch/xen/drivers/netif/drv.o else -CORE_FILES += arch/xen/drivers/block/drv.o -CORE_FILES += arch/xen/drivers/network/drv.o +DRIVERS += arch/xen/drivers/block/drv.o +DRIVERS += arch/xen/drivers/network/drv.o endif ifdef CONFIG_XEN_PRIVILEGED_GUEST CORE_FILES += arch/xen/drivers/dom0/drv.o